home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941221-19950208 / 000030_news@columbia.edu_Mon Dec 26 17:19:49 1994.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07543
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 26 Dec 1994 12:19:52 -0500
  3. Received: by apakabar.cc.columbia.edu id AA21686
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 26 Dec 1994 12:19:51 -0500
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Help needed in slip setup!
  9. Date: 26 Dec 1994 17:19:49 GMT
  10. Organization: Columbia University
  11. Lines: 60
  12. Message-Id: <3dmtvl$l5k@apakabar.cc.columbia.edu>
  13. References: <3dl8jc$54f@vixen.cso.uiuc.edu> <1994Dec25.203048.36009@cc.usu.edu>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <3dl8jc$54f@vixen.cso.uiuc.edu>,
  18.  somebody@prairienet.org (Carlos Ramirez Pnet Admin) writes:
  19. > Hello everyone after various attempts to setup config files for using 
  20. > slip especially with dns I have given up and decide to ask assistance. 
  21. > Thus can someone be so kind as to mail be a sample config files for using 
  22. > kermit with slip for dos.
  23. >
  24. Did you read the instructions?  This is from the file NETWORKS\SETUP.DOC
  25. in the MS-DOS Kermit 3.14 Beta ZIP file:
  26.  
  27. MAKING SLIP CONNECTIONS
  28.  
  29. To make a SLIP (Serial Line IP) connection, follow these steps:
  30.  
  31. 1. SET PORT 1
  32.    (or whichever serial port you will be using for the SLIP connection).
  33.  
  34. 2. SET SPEED 19200
  35.    (or whatever speed you will be using)
  36.  
  37. 3. SET FLOW RTS/CTS (or NONE)
  38.    Don't use Xon/Xoff flow control on a SLIP connection!  SLIP and Xon/Xoff
  39.    are incompatible with each other.
  40.  
  41. 4. Establish a connection to the terminal server or other device that will be
  42.    providing SLIP service.  Determine the IP address and other information
  43.    (e.g. gateway address) that it has assigned to you.    Normally, these are
  44.    displayed on your screen before the terminal server enters SLIP mode.
  45.  
  46. 5. Escape back to the MS-Kermit prompt and EXIT from MS-DOS Kermit.  The
  47.    connection is left open.
  48.  
  49. 6. Start the SLIP8250 driver, telling it to use the same port (hex address and
  50.    IRQ number must be supplied) and speed (decimal) used in (1) and (2) above,
  51.    and to use hardware flow control (-h), for example:
  52.  
  53.       slip8250 0x60 -h slip 4 0x3f8 19200
  54.  
  55. 7. Start MS-DOS Kermit again.  Do NOT give it a SET PORT command for the
  56.    serial port where SLIP is running.  Instead, give the SET TCP ADDRESS,
  57.    SET TCP GATEWAY, and other necessary SET TCP commands.  Then, to make
  58.    a connection, use SET PORT TCP <address>, where <address> is the IP
  59.    hostname or address of the IP host you want to connect to.
  60.  
  61. Note: Even though you might think it's silly to exit from Kermit and then start
  62. it again, when you could simply start the SLIP driver from the Kermit prompt,
  63. there is a reason: starting a driver from inside an application results in
  64. memory fragmentation.
  65.  
  66. Note 2: In version 3.13 and later, it is also possible to obtain BOOTP service
  67. on a SLIP connection if your SLIP server is configured to provide it (for
  68. example, Cisco terminal servers can do this).  Also, MS-DOS Kermit's SHOW
  69. COMMUNICATIONS command will display the IP address of the BOOTP server.
  70.  
  71. > On a side note I have beta 13 of kermit what new since then?
  72. >
  73. Of interest to you would be an improvement in the efficiency of SLIP service,
  74. which came in Beta 16 (the current Beta).
  75.  
  76. - Frank